home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / tek / examples / Makefile_elate < prev    next >
Encoding:
Makefile  |  2001-05-26  |  864 b   |  60 lines

  1. ##############################################################################
  2. #
  3. #    Elate/vpcc examples makefile
  4. #
  5. ##############################################################################
  6.  
  7. RM = rm -f
  8. CC = vpcc
  9.  
  10. CFLAGS = -Wall -I ../../ -O3
  11.  
  12. .c.o: 
  13.     $(CC) -c $(CFLAGS) $< -o $@
  14.  
  15. all:    dynamicsystem balls bashing array dino \
  16.         client server killserver heaptest randomtest \
  17.         string subtask subtask2 timetest taskterror \
  18.         kine/kine
  19.  
  20. dynamicsystem: dynamicsystem.o
  21.  
  22. balls: balls.o
  23.  
  24. bashing:    bashing.o
  25.  
  26. array: array.o
  27.  
  28. dino: dino.o
  29.  
  30. client: client.o
  31.  
  32. server: server.o
  33.  
  34. killserver: killserver.o
  35.  
  36. heaptest: heaptest.o
  37.  
  38. randomtest: randomtest.o
  39.  
  40. string: string.o
  41.  
  42. subtask: subtask.o
  43.  
  44. subtask2: subtask2.o
  45.  
  46. timetest: timetest.o
  47.  
  48. taskterror: taskterror.o
  49.  
  50. kine/kine: kine/kine.o kine/mathutil.o
  51.  
  52. clean:
  53.     $(RM) *.00
  54.     -$(RM) *.o
  55.     -$(RM) kine/*.00
  56.     -$(RM) kine/*.o
  57.  
  58.  
  59.  
  60.